home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo off
- rem (C) Copyright 1993, Ad Infinitum Programs, all rights reserved
-
- rem This batch file is called by UC for flushing the harddisk cache
-
-
- rem Notify the user
-
- echo --------------------------------------------------------------------
- echo U2_FLUSH: Calling multiple disk-cache (delayed write) flush commands
- echo (errors might occur for not installed caching programs)
-
-
- echo Flushing Microsoft SmartDrive (if installed)
-
- smartdrv /c >nul
-
-
- echo Flushing Norton Cache (if installed)
-
- ncache /dump > nul
-
-
- echo Flushing ADCache (if installed)
-
- adcache -f > nul
-
-
- echo Flushing Symantec PC-CACHE (if installed)
-
- pc-cache /flush > nul
-
-
- echo U2_FLUSH: Task completed
- echo --------------------------------------------------------------------
-